翻訳と辞書
Words near each other
・ Floyd, Texas
・ Floyd, Virginia
・ Floyd-Jones
・ Floydada Independent School District
・ Floydada, Texas
・ Floydale, South Carolina
・ Floydelia Diasen
・ FloydFest
・ Floydia
・ Floydian Slip
・ Floydiella
・ Floyds Bay
・ Floyds Fork
・ Floyds Knobs, Indiana
・ Floydsburg, Kentucky
Floyd–Rivest algorithm
・ Floyd–Steinberg dithering
・ Floyd–Warshall algorithm
・ Floyer
・ Floyer Hayes
・ Floyer Sydenham
・ Floyon
・ Flozell Adams
・ Floß
・ Floß (river)
・ Floé Kühnert
・ FLP
・ FLP-FRT recombination
・ FlpD RNA motif
・ FLQ Manifesto


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Floyd–Rivest algorithm : ウィキペディア英語版
Floyd–Rivest algorithm

In computer science, the Floyd-Rivest algorithm is a selection algorithm developed by Robert W. Floyd and Ronald L. Rivest that has an optimal expected number of comparisons within lower-order terms. It is functionally equivalent to quickselect, but runs faster in practice on average. It has an expected running time of and an expected number of comparisons of .
The algorithm was originally presented in a Stanford University technical report containing two papers, where it was referred to as SELECT and paired with PICK, or median of medians. 〔"Two papers on the selection problem: Time Bounds for Selection and Expected Time Bounds for Selection" (CS-TR-73-349 ), (Stanford Computer Science Technical Reports and Technical Notes ), April 1973〕 It was subsequently published in Communications of the ACM, Volume 18: Issue 3.
==Algorithm==
The Floyd-Rivest algorithm is a divide and conquer algorithm, sharing many similarities with quickselect. It uses sampling to help partition the list into three sets. It then recursively selects the ''k''th smallest element from the appropriate set.
The general steps are:
# Select a small random sample ''S'' from the list ''L''.
# From ''S'', recursively select two elements, ''u'' and ''v'', such that ''u'' < ''v''. These two elements will be the pivots for the partition and are expected to contain the ''k''th smallest element of the entire list between them (in a sorted list).
# Using ''u'' and ''v'', partition ''S'' into three sets: ''A'', ''B'', and ''C''. ''A'' will contain the elements with values less than ''u'', ''B'' will contain the elements with values between ''u'' and ''v'', and ''C'' will contain the elements with values greater than ''v''.
# Partition the remaining elements in ''L'' (that is, the elements in ''L'' - ''S'') by comparing them to ''u'' or ''v'' and placing them into the appropriate set. If ''k'' is smaller than half the number of the elements in ''L'' rounded up, then the remaining elements should be compared to ''v'' first and then only to ''u'' if they are smaller than ''v''. Otherwise, the remaining elements should be compared to ''u'' first and only to ''v'' if they are greater than ''u''.
# Based on the value of ''k'', apply the algorithm recursively to the appropriate set to select the ''k''th smallest element in ''L''.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Floyd–Rivest algorithm」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.